home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / c / ExtrasLib.lha / ExtrasLib / Include / Extras / Libs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-30  |  620 b   |  42 lines

  1. #ifndef EXTRAS_LIBS_H
  2. #define EXTRAS_LIBS_H
  3.  
  4. #ifndef EXEC_LIBRARIES_H
  5. #include <exec/libraries.h>
  6. #endif
  7.  
  8.  
  9. struct Libs
  10. {
  11.   APTR  *LibBase;
  12.   STRPTR LibName;
  13.   ULONG  Version,
  14.          Flags;
  15. };
  16.  
  17. #define OLF_OPTIONAL (1<<0) 
  18.  
  19. /****  OBSOLETE ****
  20.  
  21. #ifdef EXTRAS_LIBS_DEF_ERROR_STRINGS
  22. #ifndef EXTRAS_LIBS_ERRORS
  23. #define EXTRAS_LIBS_ERRORS
  24. extern STRPTR LibErrorString = "Couldn't open the following libraries:";
  25. extern STRPTR LibNameVerFmt  = "\n  %s version %d";
  26. extern STRPTR LibOk          = "Ok";
  27. #endif
  28. #endif
  29.  
  30. struct Libs
  31. {
  32.   APTR  *LibBase;
  33.   STRPTR LibName;
  34.   ULONG  Version;
  35. };
  36.  
  37. */
  38.  
  39.  
  40.  
  41. #endif /* EXTRAS_LIBS_H */
  42.